home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mac Easy 2010 May
/
Mac Life Ubuntu.iso
/
casper
/
filesystem.squashfs
/
usr
/
lib
/
pm-utils
/
sleep.d
/
000record
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2009-04-07
|
232 b
|
17 lines
#!/bin/sh
#
# Record that we have a suspend/hibernate in progress.
#
. "${PM_FUNCTIONS}"
LOGFILE="/var/lib/pm-utils/status"
case "$1" in
hibernate|suspend)
echo "$1" >"$LOGFILE"
;;
thaw|resume)
rm -f "$LOGFILE"
;;
esac